// Carte interactive des concepts du cours (graphe SVG maison). import { Suspense } from "react"; import { ConceptMap } from "@/components/learning/concept-map"; export const metadata = { title: "Concepts" }; export default async function ConceptsPage({ params }: { params: Promise<{ course: string }> }) { const { course } = await params; return ( ); }